home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19971216-19980424 / 000338_news@newsmaster….columbia.edu _Thu Mar 26 10:59:12 1998.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Return-Path: <news@newsmaster.cc.columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id KAA21362
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Thu, 26 Mar 1998 10:59:11 -0500 (EST)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id KAA06497
  7.     for kermit.misc@watsun; Thu, 26 Mar 1998 10:59:11 -0500 (EST)
  8. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Newsgroups: comp.protocols.kermit.misc
  11. Subject: Re: kermit for sco xenix
  12. Date: 26 Mar 1998 15:59:08 GMT
  13. Organization: Columbia University
  14. Lines: 68
  15. Message-ID: <6fdu0c$e3l$1@apakabar.cc.columbia.edu>
  16. References: <6e9nig$npb$1@camel29.mindspring.com> <6e9ol0$6dl$1@apakabar.cc.columbia.edu> <3519b9e2.47872769@news.mindspring.com>
  17. NNTP-Posting-Host: watsun.cc.columbia.edu
  18. Xref: news.columbia.edu comp.protocols.kermit.misc:8536
  19.  
  20. In article <3519b9e2.47872769@news.mindspring.com>,
  21. John Brnich <jabr@mindspring.com> wrote:
  22. : ...
  23. : Local sys is SCO xenix 286. I am using the binary from the
  24. : \unix\sco\xenix dir  (kermit5)
  25. :
  26. >From the C-Kermit CDROM?
  27.  
  28. : Thanks.  I shortened the block and the script now runs. However, the
  29. : new problem:  after the remote sys (win95, procomm 32 in host mode)
  30. : answers, ":they"  (I think local kermit) disconnect immediatley.
  31. :
  32. Procomm is, of course, an unknown quantity to us, and so that makes this
  33. entire connection problematic from a support point of view.
  34.  
  35. : I've used kermit5 in termianl mode and have connected and interacted
  36. : successfully. Shold the following code work:
  37. : :begin                     
  38. : set modem type multitech         
  39. :
  40. This command won't work because "set modem type" was not a C-Kermit
  41. command until version 6.0.
  42.  
  43. : set line /dev/tty1a
  44. : set speed 9600
  45. : ;...........set carrier-watch on;(enable if having problems)??
  46. :
  47. Ditto.
  48.  
  49. : set dial retries 15            
  50. : set dial timeout 65            
  51. : set dial connect on
  52. :
  53. Ditto for all these.
  54.  
  55. : echo \13
  56. : :dialout
  57. : echo \13
  58. : dial t1800xxxxxxxx4\13
  59. In short, all of the advanced dialing and modem stuff is new
  60. to C-Kermit 6.0.
  61.  
  62. If you would like to try to build C-Kermit 6.0 on Xenix 286,
  63. please contact me; I'll be glad to help.
  64.  
  65. : Another question...The remote uses hardware fc, local kermit uses
  66. : software fc...
  67. :
  68. More accurately, Xenix/286 does not support hardware flow control
  69. and so is limited to software flow control.
  70.  
  71. : and does not seem to accept the set flow command. Does
  72. : this mean the remote must be changed to software fc?
  73. No.  If you can enable *local* software flow control between
  74. C-Kermit and the modem, this is the next best thing to hardware flow
  75. control.  C-Kermit 6.0 supports this; earlier versions don't.
  76. However, you might still be able to force the local modem into this
  77. configuration; see your modem manual.
  78.  
  79. The flow control mismatch might be the cause of the disconnect.
  80.  
  81. Again, if you (or anybody else) would like to try building C-Kermit
  82. 6.0 for Xenix/286 (or any other platform that we don't have binary
  83. for), please contact me directly.
  84.  
  85. - Frank